home *** CD-ROM | disk | FTP | other *** search
- if(1000 < Number(Now))
- {
- Minutes = int(Now.substr(1,length(Now) - 3) / 60);
- Seconds = int(Now.substr(1,length(Now) - 3) - Minutes * 60);
- }
- Centiseconds = int(Now.substr(length(Now) - 3,3));
- if(Number(Centiseconds) < 10)
- {
- Centiseconds = "0" add Centiseconds;
- }
- if(Number(Seconds) < 10)
- {
- Seconds = "0" add Seconds;
- }
- if(Number(Minutes) < 10)
- {
- Minutes = "0" add Minutes;
- }
- if(59 < Number(int(Minutes)))
- {
- call("Reset");
- }
- gotoAndPlay(21);
-